GET api/account/client/{clientID}/ipo-placement-allocation?placementIDs[0]={placementIDs[0]}&placementIDs[1]={placementIDs[1]}&placementType={placementType}&startDate={startDate}&endDate={endDate}

Get IPO Placement/Allocation of a client

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientID

TPP Client ID.

integer

Required

placementIDs

List of Placement ID to filter on.

Collection of integer

None.

placementType

>Placement type to filter on.

enObjectType

None.

startDate

Start date in format YYYY-MM-DD.

string

None.

endDate

End date in format YYYY-MM-DD.

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of IPOPlacement
NameDescriptionTypeAdditional information
ClientID

TPP client identifier.

integer

Required

PlacementID

TPP Placement identifier.

integer

Required

SecurityCode

Security code.

string

None.

BuySell

Buy / Sell indicator.

enBuySell

None.

Quantity

Placement quantity.

integer

None.

PlacementType

Placement type.

enObjectType

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ClientID": 100500,
    "PlacementID": 200000000,
    "SecurityCode": "BHP",
    "BuySell": 1,
    "Quantity": 10000,
    "PlacementType": 88
  },
  {
    "ClientID": 100500,
    "PlacementID": 300000000,
    "SecurityCode": "BHP",
    "BuySell": 1,
    "Quantity": 10000,
    "PlacementType": 89
  }
]

application/xml, text/xml

Sample:
<ArrayOfIPOPlacement xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TPP.B2B.Webservices2.Contract.Account">
  <IPOPlacement>
    <BuySell>Buy</BuySell>
    <ClientID>100500</ClientID>
    <PlacementID>200000000</PlacementID>
    <PlacementType>Placement</PlacementType>
    <Quantity>10000</Quantity>
    <SecurityCode>BHP</SecurityCode>
  </IPOPlacement>
  <IPOPlacement>
    <BuySell>Buy</BuySell>
    <ClientID>100500</ClientID>
    <PlacementID>300000000</PlacementID>
    <PlacementType>PlacementAllocation</PlacementType>
    <Quantity>10000</Quantity>
    <SecurityCode>BHP</SecurityCode>
  </IPOPlacement>
</ArrayOfIPOPlacement>